home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / BUSINESS / XLMATH22.ZIP / SOURCE.ZIP / XLMATH.RC < prev    next >
Text File  |  1993-06-28  |  2KB  |  59 lines

  1. // XLMATH.RC -- XLMATH Resource Files
  2. // Mathematics XLL for Excel 4.0
  3. // Written by Roy Kari
  4. // August 1992
  5.  
  6. // these *must* be kept in synch with XLM_ERROR in XLMATH.H
  7. #define XLU_NO_MEMORY         0
  8. #define XLU_MEMORY_ERROR     1
  9. #define XLU_NO_FREE         2
  10. #define XLU_NO_ACTIVESHEET    3
  11. #define XLU_BAD_REF            4
  12. #define XLU_OVERLAPPED_REF    5
  13. #define XLU_NO_ARRAY        6
  14. #define XLD_NOT_CELL        7
  15. #define XLD_BAD_DIALOG        8
  16. #define XLM_NOT_SQUARE         9
  17. #define XLM_POLY             10
  18. #define XLM_SMOOTHSG         11
  19. #define XLM_SMOOTHWT        12
  20. #define XLM_CUBIC            13
  21. #define XLM_CALCSPLINE        14
  22. #define XLM_MODENSITY        15
  23. #define XLM_CF1                16
  24. #define XLM_CF2                17
  25. #define XLM_CF3                18
  26. #define XLM_CF4                19
  27. #define XLM_CF5                20
  28. #define XLM_CF6                21
  29. #define XLM_CF7                22
  30. #define XLM_CF8                23
  31.  
  32. STRINGTABLE
  33. BEGIN
  34.     XLU_NO_MEMORY," Out of memory, Remove items from desktop"
  35.     XLU_MEMORY_ERROR," Memory error, Exit Excel"
  36.     XLU_NO_FREE," Internal error freeing memory: Proably not critical"
  37.     XLU_NO_ACTIVESHEET," No active sheet: Please activate one"
  38.     XLU_BAD_REF," Reference to cell or range is bad, missing or discontinuous. None are supported"
  39.     XLU_OVERLAPPED_REF," Output range overlaps input range; Try again"
  40.     XLU_NO_ARRAY," Single cell referenced in input dialog; Requires reference to 2 or more cells"
  41.     XLD_NOT_CELL," Selection must be a cell or range of cells; Select a cell & try again"
  42.     XLD_BAD_DIALOG," Bad or missing info in dialog box"
  43.     XLM_NOT_SQUARE," Symmetric matrix must be square"
  44.     XLM_POLY," Check PolyCurveFit parameters"
  45.     XLM_SMOOTHSG," Check SmoothSG parameters"
  46.     XLM_SMOOTHWT," Check SmoothWT parameters"
  47.     XLM_CUBIC," Check CubicSplines parameters"
  48.     XLM_CALCSPLINE," Check CalcSpline parameters"
  49.     XLM_MODENSITY," Check MODensity parameters"
  50.     XLM_CF1," Need more than 2 XY data pairs in adjacent column format"
  51.     XLM_CF2," X & Y values must be in adjacent column format"
  52.     XLM_CF3," Must have parm, lower & upper bounds in adjacent rows"
  53.     XLM_CF4," Please define the name CustomFitMacro in the active sheet"
  54.     XLM_CF5," Please check the name CustomFitMacro in your defined names"
  55.     XLM_CF6," Can't find a proper defined name for CustomFitMacro"
  56.     XLM_CF7," CustomFitMacro must return a single number"
  57.     XLM_CF8," No. data points must exceed number parameters"
  58. END
  59.